home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Programming / SWI / source / src / pl-ntcon.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-02  |  416 b   |  24 lines

  1. /*  $Id: pl-ntcon.c,v 1.2 1997/07/02 15:22:46 jan Exp $
  2.  
  3.     Copyright (c) 1990 Jan Wielemaker. All rights reserved.
  4.     See ../LICENCE to find out about your rights.
  5.     jan@swi.psy.uva.nl
  6.  
  7.     Purpose: Windows (NT) specific stuff
  8. */
  9.  
  10. #include <windows.h>
  11. #include "pl-itf.h"
  12.  
  13. int
  14. main(int argc, char **argv)
  15. { if ( !PL_initialise(argc, argv) )
  16.     PL_halt(1);
  17.   
  18.   PL_halt(PL_toplevel() ? 0 : 1);
  19.  
  20.   return 0;
  21. }
  22.  
  23.  
  24.